home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / apache / conf / extra / httpd-userdir.conf < prev    next >
Encoding:
Text File  |  2005-12-24  |  944 b   |  27 lines

  1. <IfModule userdir_module>
  2.     #
  3.     # UserDir: The name of the directory that is appended onto a user's home
  4.     # directory if a ~user request is received.  Note that you must also set
  5.     # the default access control for these directories, as in the example below.
  6.     #
  7.     UserDir "My Documents/My Website"
  8.  
  9.     #
  10.     # Control access to UserDir directories.  The following is an example
  11.     # for a site where these directories are restricted to read-only.
  12.     #
  13.     <Directory C:/Documents and Settings/*/"My Documents/My Website">
  14.         AllowOverride FileInfo AuthConfig Limit Indexes
  15.         Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  16.         <Limit GET POST OPTIONS>
  17.             Order allow,deny
  18.             Allow from all
  19.         </Limit>
  20.         <LimitExcept GET POST OPTIONS>
  21.             Order deny,allow
  22.             Deny from all
  23.         </LimitExcept>
  24.     </Directory>
  25. </IfModule>
  26.  
  27.